commit message - определение. Что такое commit message
Diclib.com
Словарь ChatGPT
Введите слово или словосочетание на любом языке 👆
Язык:

Перевод и анализ слов искусственным интеллектом ChatGPT

На этой странице Вы можете получить подробный анализ слова или словосочетания, произведенный с помощью лучшей на сегодняшний день технологии искусственного интеллекта:

  • как употребляется слово
  • частота употребления
  • используется оно чаще в устной или письменной речи
  • варианты перевода слова
  • примеры употребления (несколько фраз с переводом)
  • этимология

Что (кто) такое commit message - определение

COMPUTER OPERATION THAT MAKES A SET OF TENTATIVE CHANGES PERMANENT
Commit (SQL); Commit log
Найдено результатов: 569
COMMIT (SQL)         
SQL STATEMENT THAT EXECUTES A DATABASE COMMIT
Commit (SQL); Commit log
A COMMIT statement in SQL ends a transaction within a relational database management system (RDBMS) and makes all changes visible to other users. The general format is to issue a BEGIN WORK statement, one or more SQL statements, and then the COMMIT statement.
Commit (data management)         
In computer science and data management, a commit is the making of a set of tentative changes permanent, marking the end of a transaction and providing Durability to ACID transactions. A commit is an act of committing.
commit         
WIKIMEDIA DISAMBIGUATION PAGE
Commit (disambiguation)
v.
1) (d; refl.) ('to devote') to commit to (to commit oneself to a cause)
2) (D; tr.) ('to assign') to commit to (to commit funds to a project)
3) (D; tr.) ('to confine') to commit to (to commit smb. to a mental hospital; committed to prison)
4) (d; tr.) ('to place') (to commit a child to a relative's care; to commit a poem to memory; to commit one's thoughts to paper)
5) (H; usu. refl.; no passive) ('to promise') he committed himself to support her parents
commit         
WIKIMEDIA DISAMBIGUATION PAGE
Commit (disambiguation)
v. a.
1.
Intrust, consign, confide, give in trust.
2.
Deposit, consign, resign, give over, put, place, lay.
3.
Perpetrate, enact, do, perform.
4.
Imprison, send to prison, put in custody, place in confinement.
5.
Engage, pledge, implicate.
6.
Compromise, endanger, bring into danger, put at hazard, put in jeopardy.
7.
Place or put in charge of or hand over to a committee.
Commit         
WIKIMEDIA DISAMBIGUATION PAGE
Commit (disambiguation)
·vt To Confound.
II. Commit ·vi To Sin; ·esp., to be incontinent.
III. Commit ·vt To put in charge of a jailor; to Imprison.
IV. Commit ·vt To Do; to perpetrate, as a crime, sin, or fault.
V. Commit ·vt To join for a contest; to Match;
- followed by with.
VI. Commit ·vt To give in trust; to put into charge or keeping; to Intrust; to Consign;
- used with to, unto.
VII. Commit ·vt To pledge or bind; to compromise, expose, or endanger by some decisive act or preliminary step;
- often used reflexively; as, to commit one's self to a certain course.
commit         
WIKIMEDIA DISAMBIGUATION PAGE
Commit (disambiguation)
¦ verb (commits, committing, committed)
1. perpetrate or carry out (a mistake, crime, or immoral act).
2. pledge or bind to a course, policy, or use.
[often as adjective committed] dedicate to a cause: a committed Christian.
(be committed to) be in a long-term emotional relationship with.
3. transfer for safe keeping or permanent preservation.
send to prison or psychiatric hospital, or for trial in a higher court.
4. refer (a parliamentary or legislative bill) to a committee.
Derivatives
committable adjective
committer noun
Origin
ME: from L. committere 'join, entrust' (in med. L. 'put into custody'), from com- 'with' + mittere 'put or send'.
commit         
WIKIMEDIA DISAMBIGUATION PAGE
Commit (disambiguation)
(commits, committing, committed)
Frequency: The word is one of the 1500 most common words in English.
1.
If someone commits a crime or a sin, they do something illegal or bad.
I have never committed any crime...
This is a man who has committed murder.
VERB: V n, V n
2.
If someone commits suicide, they deliberately kill themselves.
There are unconfirmed reports he tried to commit suicide.
VERB: V n
3.
If you commit money or resources to something, you decide to use them for a particular purpose.
They called on Western nations to commit more money to the poorest nations...
He should not commit American troops without the full consent of Congress.
VERB: V n to/for n/-ing, V n
4.
If you commit yourself to something, you say that you will definitely do it. If you commit yourself to someone, you decide that you want to have a long-term relationship with them.
I would advise people to think very carefully about committing themselves to working Sundays...
I'd like a friendship that might lead to something deeper, but I wouldn't want to commit myself too soon...
You don't have to commit to anything over the phone.
VERB: V pron-refl to -ing/n, V pron-refl, V to n, also V n to n
committed
He said the government remained committed to peace.
...a committed socialist.
ADJ: oft ADJ to n/-ing
5.
If you do not want to commit yourself on something, you do not want to say what you really think about it or what you are going to do.
It isn't their diplomatic style to commit themselves on such a delicate issue...
She didn't want to commit herself one way or the other.
VERB: with brd-neg, V pron-refl on n, V pron-refl
6.
If someone is committed to a hospital, prison, or other institution, they are officially sent there for a period of time.
Arthur's drinking caused him to be committed to a psychiatric hospital.
VERB: usu passive, be V-ed to n, also be V-ed
7.
In the British legal system, if someone is committed for trial, they are sent by magistrates to stand trial in a crown court.
He is expected to be committed for trial at Liverpool Crown Court.
VERB: usu passive, be V-ed for n
8.
If you commit something to paper or to writing, you record it by writing it down. If you commit something to memory, you learn it so that you will remember it.
She had not committed anything to paper about it...
I'll repeat that so you can commit it to memory.
VERB: V n to n, V n to n
message passing         
MECHANISM FOR INTERPROCESS COMMUNICATION
Message passing programming; Message Passing; Message-based protocol; Message-passing; Message-based; Message (object-oriented programming); Asynchronous message passing; Synchronous message passing
One of the two techniques for communicating between parallel processes (the other being shared memory). A common use of message passing is for communication in a parallel computer. A process running on one processor may send a message to a process running on the same processor or another. The actual transmission of the message is usually handled by the run-time support of the language in which the processes are written, or by the operating system. Message passing scales better than shared memory, which is generally used in computers with relatively few processors. This is because the total communications bandwidth usually increases with the number of processors. A message passing system provides primitives for sending and receiving messages. These primitives may by either synchronous or asynchronous or both. A synchronous send will not complete (will not allow the sender to proceed) until the receiving process has received the message. This allows the sender to know whether the message was received successfully or not (like when you speak to someone on the telephone). An asynchronous send simply queues the message for transmission without waiting for it to be received (like posting a letter). A synchronous receive primitive will wait until there is a message to read whereas an asynchronous receive will return immediately, either with a message or to say that no message has arrived. Messages may be sent to a named process or to a named mailbox which may be readable by one or many processes. Transmission involves determining the location of the recipient and then choosing a route to reach that location. The message may be transmitted in one go or may be split into packets which are transmitted independently (e.g. using wormhole routing) and reassembled at the receiver. The message passing system must ensure that sufficient memory is available to buffer the message at its destination and at intermediate nodes. Messages may be typed or untyped at the programming language level. They may have a priority, allowing the receiver to read the highest priority messages first. Some message passing computers are the {MIT J-Machine (http://ai.mit.edu/projects/cva/cva_j_machine.html)}, the {Illinois Concert Project (http://www-csag.cs.uiuc.edu/projects/concert.html)} and transputer-based systems. Object-oriented programming uses message passing between objects as a metaphor for procedure call. (1994-11-11)
Private message         
MODE OF ELECTRONIC COMMUNICATION
Private messaging; Message (direct); Private Message; Private Messaging; YGPM; Direct message; Personal message
In computing, a private message, personal message, or direct message (abbreviated as PM or DM) refers to a private communication sent or received by a user of a private communication channel on any given platform. Unlike public posts, PMs are only viewable by the participants.
Message authentication code         
KEYED HASH FUNCTION USED TO PROTECT A MESSAGE'S INTEGRITY AND AUTHENTICITY
Message Authentication Code; Message Integrity Code; Partial MAC; Message footprint; Message authentication codes; Message-authentication code; Message integrity code; Message Integrity Check; Keyed hash function; Authentication tag
In cryptography, a message authentication code (MAC), sometimes known as a tag, is a short piece of information used for authenticating a message. In other words, to confirm that the message came from the stated sender (its authenticity) and has not been changed.

Википедия

Commit (data management)

In computer science and data management, a commit is the making of a set of tentative changes permanent, marking the end of a transaction and providing Durability to ACID transactions. A commit is an act of committing. The record of commits is called the commit log.